*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#f1f1f1;
}

/* HEADER */
header{
    background:linear-gradient(to right,#4facfe,#00f2fe);
    color:white;
    text-align:center;
    padding:40px 20px;
}

header h1{
    font-size:45px;
    margin-bottom:10px;
}

/* NAVBAR */
nav{
    background:#1f1f1f;
    padding:15px;
    text-align:center;
}

nav a{
    color:white;
    text-decoration:none;
    margin:0 15px;
    font-weight:bold;
    transition:0.3s;
}

nav a:hover{
    color:#00f2fe;
}

/* SECTIONS */
section{
    width:90%;
    max-width:1000px;
    margin:30px auto;
    background:white;
    padding:30px;
    border-radius:15px;
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

section h2{
    margin-bottom:20px;
    border-left:5px solid #4facfe;
    padding-left:10px;
    color:#222;
}

/* ABOUT */
.about{
    display:flex;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.about img{
    width:120px;
}

/* SKILLS */
.skills ul{
    margin-left:20px;
}

.skills li{
    margin:10px 0;
}

/* PROJECTS */
.projects ol{
    margin-left:20px;
}

.projects li{
    margin:10px 0;
}

/* ABOUT US */
.team-list{
    margin-left:20px;
}

.team-list li{
    margin:12px 0;
    font-size:18px;
}

/* CONTACT */
form input,
form textarea{
    width:100%;
    padding:12px;
    margin:10px 0 20px;
    border:1px solid #ccc;
    border-radius:6px;
}

form button{
    width:100%;
    padding:12px;
    border:none;
    background:#4facfe;
    color:white;
    font-size:16px;
    border-radius:6px;
    cursor:pointer;
    transition:0.3s;
}

form button:hover{
    background:#008cff;
}

/* FOOTER */
footer{
    background:#1f1f1f;
    color:white;
    text-align:center;
    padding:20px;
    margin-top:30px;
}

/* RESPONSIVE */
@media(max-width:768px){

header h1{
    font-size:35px;
}

.about{
    flex-direction:column;
    text-align:center;
}

}